home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
PROGRAM
/
CPTUTS22.ARJ
/
ENUM.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-20
|
716b
|
35 lines
// Chapter 2 - Program 1
#include <iostream.h>
enum game_result {win, lose, tie, cancel};
main()
{
game_result result;
enum game_result omit = cancel;
for (result = win;result <= cancel;result++) {
if (result == omit)
cout << "The game was cancelled\n";
else {
cout << "The game was played ";
if (result == win)
cout << "and we won!";
if (result == lose)
cout << "and we lost.";
cout << "\n";
}
}
}
// Result of execution
//
// The game was played and we won!
// The game was played and we lost.
// The game was played
// The game was cancelled